home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / dev / lang / SmallEiffel.lha / SmallEiffel / lib_se / expression_with_comment.e < prev    next >
Text File  |  1998-12-22  |  5KB  |  241 lines

  1. --          This file is part of SmallEiffel The GNU Eiffel Compiler.
  2. --          Copyright (C) 1994-98 LORIA - UHP - CRIN - INRIA - FRANCE
  3. --            Dominique COLNET and Suzanne COLLIN - colnet@loria.fr 
  4. --                       http://www.loria.fr/SmallEiffel
  5. -- SmallEiffel is  free  software;  you can  redistribute it and/or modify it 
  6. -- under the terms of the GNU General Public License as published by the Free
  7. -- Software  Foundation;  either  version  2, or (at your option)  any  later 
  8. -- version. SmallEiffel is distributed in the hope that it will be useful,but
  9. -- WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. -- or  FITNESS FOR A PARTICULAR PURPOSE.   See the GNU General Public License 
  11. -- for  more  details.  You  should  have  received a copy of the GNU General 
  12. -- Public  License  along  with  SmallEiffel;  see the file COPYING.  If not,
  13. -- write to the  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  14. -- Boston, MA 02111-1307, USA.
  15. --
  16. class EXPRESSION_WITH_COMMENT
  17.    --
  18.    -- To store one expression with a following comment.
  19.    -- 
  20.  
  21. inherit EXPRESSION;
  22.    
  23. creation make
  24.    
  25. feature 
  26.    
  27.    expression : EXPRESSION;
  28.    
  29.    comment : COMMENT;
  30.    
  31. feature {NONE}
  32.    
  33.    make(e: like expression; c: like comment) is
  34.       require
  35.      e /= Void;
  36.      really_a_comment: c.count > 0
  37.       do
  38.      expression := e;
  39.      comment := c;
  40.       ensure
  41.      expression = e;
  42.      comment = c
  43.       end;
  44.  
  45. feature
  46.    
  47.    is_writable: BOOLEAN is 
  48.       do
  49.      Result := expression.is_writable;
  50.       end;
  51.  
  52.    is_manifest_string: BOOLEAN is
  53.       do
  54.      Result := expression.is_manifest_string;
  55.       end;
  56.  
  57.    is_void: BOOLEAN is
  58.       do
  59.      Result := expression.is_void;
  60.       end;
  61.  
  62.    is_result: BOOLEAN is
  63.       do
  64.      Result := expression.is_result;
  65.       end;
  66.  
  67.    is_current: BOOLEAN is
  68.       do
  69.      Result := expression.is_current;
  70.       end;
  71.  
  72.    is_static: BOOLEAN is 
  73.       do 
  74.      Result := expression.is_static; 
  75.       end;
  76.  
  77.    static_value: INTEGER is
  78.       do
  79.      Result := expression.static_value;
  80.       end;
  81.       
  82.    is_pre_computable: BOOLEAN is 
  83.       do
  84.      Result := expression.is_pre_computable;
  85.       end;
  86.  
  87.    isa_dca_inline_argument: INTEGER is
  88.       do
  89.      Result := expression.isa_dca_inline_argument;
  90.       end;
  91.    
  92.    dca_inline_argument(formal_arg_type: TYPE) is
  93.       do
  94.      expression.dca_inline_argument(formal_arg_type);
  95.       end;
  96.    
  97.    frozen mapping_c_target(target_type: TYPE) is
  98.       do
  99.      expression.mapping_c_target(target_type);
  100.       end;
  101.  
  102.    frozen mapping_c_arg(formal_arg_type: TYPE) is
  103.       do
  104.      expression.mapping_c_arg(formal_arg_type);
  105.       end;
  106.  
  107.    afd_check is
  108.       do
  109.      expression.afd_check;
  110.       end;
  111.    
  112.    collect_c_tmp is
  113.       do
  114.       expression.collect_c_tmp;
  115.       end;
  116.  
  117.    compile_to_c is
  118.       do
  119.      expression.compile_to_c;
  120.       end;
  121.    
  122.    c_declare_for_old is 
  123.       do
  124.      expression.c_declare_for_old;
  125.       end;
  126.       
  127.    compile_to_c_old is 
  128.       do
  129.      expression.compile_to_c_old;
  130.       end;
  131.       
  132.    compile_to_jvm_old is 
  133.       do
  134.      expression.compile_to_jvm_old;
  135.       end;
  136.       
  137.    compile_to_jvm is
  138.       do
  139.      expression.compile_to_jvm;
  140.       end;
  141.  
  142.    compile_target_to_jvm is
  143.       do
  144.      expression.compile_target_to_jvm
  145.       end;
  146.    
  147.    compile_to_jvm_assignment(a: ASSIGNMENT) is
  148.       do
  149.      expression.compile_to_jvm_assignment(a);
  150.       end;
  151.    
  152.    jvm_branch_if_false: INTEGER is
  153.       do
  154.      Result := expression.jvm_branch_if_false;
  155.       end;
  156.  
  157.    jvm_branch_if_true: INTEGER is
  158.       do
  159.      Result := expression.jvm_branch_if_true;
  160.       end;
  161.  
  162.    compile_to_jvm_into(dest: TYPE): INTEGER is
  163.       do
  164.      Result := expression.compile_to_jvm_into(dest);
  165.       end;
  166.  
  167.    use_current: BOOLEAN is
  168.       do
  169.      Result := expression.use_current;
  170.       end;
  171.    
  172.    c_simple: BOOLEAN is
  173.       do
  174.      Result := expression.c_simple;
  175.       end;
  176.    
  177.    can_be_dropped: BOOLEAN is
  178.       do
  179.      Result := expression.can_be_dropped;
  180.       end;
  181.    
  182.    to_runnable(ct: TYPE): like Current is
  183.       local
  184.      e: EXPRESSION;
  185.       do
  186.      e := expression.to_runnable(ct);
  187.      if expression = e then
  188.         Result := Current;
  189.      else
  190.         !!Result.make(e,comment);
  191.      end;
  192.       end;
  193.    
  194.    start_position: POSITION is
  195.       do
  196.      Result := expression.start_position;
  197.       end;
  198.    
  199.    bracketed_pretty_print, pretty_print is
  200.       do
  201.      expression.pretty_print;
  202.      comment.pretty_print;
  203.       end;
  204.    
  205.    print_as_target is
  206.       do
  207.      expression.print_as_target;
  208.       end;
  209.    
  210.    short is
  211.       do
  212.      expression.short;
  213.       end;
  214.    
  215.    short_target is
  216.       do
  217.      expression.short_target;
  218.       end;
  219.    
  220.    result_type: TYPE is
  221.       do
  222.      Result := expression.result_type;
  223.       end;
  224.    
  225. feature
  226.    
  227.    precedence: INTEGER is
  228.       do
  229.      Result := expression.precedence;
  230.       end;
  231.    
  232. feature {CREATION_CALL,EXPRESSION_WITH_COMMENT}
  233.       
  234.    jvm_assign is
  235.       do
  236.      expression.jvm_assign;
  237.       end;
  238.  
  239. end -- EXPRESSION_WITH_COMMENT
  240.  
  241.